home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / GENERIC.DEF < prev    next >
Text File  |  1993-06-01  |  964b  |  32 lines

  1.  
  2. ; module-definition file for generic -- used by LINK.EXE
  3.  
  4. NAME         Generic       ; application's module name
  5.  
  6. DESCRIPTION  'Sample Microsoft Windows Application'
  7.  
  8. EXETYPE      WINDOWS       ; required for all Windows applications
  9.  
  10. STUB        'WINSTUB.EXE'  ; Generates error message if application
  11.                            ; is run without Windows
  12.  
  13. ;CODE can be moved in memory and discarded/reloaded
  14. CODE  PRELOAD MOVEABLE DISCARDABLE
  15.  
  16. ;DATA must be MULTIPLE if program can be invoked more than once
  17. DATA  PRELOAD MOVEABLE MULTIPLE
  18.  
  19. HEAPSIZE     1024
  20. STACKSIZE    5120   ; recommended minimum for Windows applications
  21.  
  22. ; All functions that will be called by any Windows routine
  23. ; MUST be exported.
  24.  
  25. EXPORTS
  26.     MainWndProc      @1    ; main window procedure
  27.     About            @2    ; About dialog procedure
  28.     HorzListProc     @3    ; HorzList dialog procedure
  29.     WndListBoxProc   @4    ; List box subclass procedure
  30.  
  31.  
  32.